home *** CD-ROM | disk | FTP | other *** search
Text File | 1997-06-28 | 465 b | 22 lines | [TEXT/CWIE] |
- // MenuSection.cp
-
- #ifndef MenuSection_h
- #include "MenuSection.h"
- #endif
-
- MenuSection::MenuSection( Menu& theMenu, uint16 length )
- : menu( theMenu ),
- firstItem( theMenu.NextItem() ),
- maxLength( length )
- {
- theMenu.AddFixedSection( *this, length );
- }
-
- MenuSection::MenuSection( Menu& theMenu, Extensible )
- : menu( theMenu ),
- firstItem( theMenu.NextItem() ),
- maxLength( maxuint16 - theMenu.NextItem() )
- {
- theMenu.AddExtensibleSection( *this );
- }
-